/**
 * 📝 Notes for Contributors:
 * 
 * - Ensure you write tests for component behavior defined in the hook.
 * - Ensure you write tests for the accessibility and interactions.
 * - No snapshot tests for components please! 🙂
 * 
 * @see Testing-Guide https://chakra-ui.com/guides/component-guide#4-build-and-test
 */

import { renderHook } from "@teste-ui/test-utils";
import * as React from "react";
import { use{{capitalize componentName}} } from "../src";

describe("use{{capitalize componentName}}", () => {
  test("it works", () => {
    expect(true).toBeTruthy();
  });
});